Pg Connectionbad Scram Authentication Requires Libpq Version 10 Or

[Solved] Pg Connectionbad Scram Authentication Requires Libpq Version 10 Or | Shell - Code Explorer | yomemimo.com
Question : PG::ConnectionBad (SCRAM authentication requires libpq version 10 or above web_1 | )

Answered by : upset-unicorn-x6glpzcvlxv8

Your application uses an API that is linked with the PostgreSQL client C library libpq.
The version of that library must be 9.6 or older, and SCRAM authentication was introduced in v10.
Upgrade libpq on the application end and try again.
If you don't need scram-sha-256 authentication, you can revert to md5:
set password_encryption = md5 in postgresql.conf
change the authentication method to md5 in pg_hba_conf
reload PostgreSQL
change the password of the user to get an MD5 encrypted password

Source : https://stackoverflow.com/questions/62807717/how-can-i-solve-postgresql-scram-authentifcation-problem | Last Update : Tue, 03 Aug 21

Answers related to pg connectionbad scram authentication requires libpq version 10 or above web 1 |

Code Explorer Popular Question For Shell